home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Metrowerks CodeWarrior / Java Support / Java_Source / Java2 / src / java / security / PrivateKey.java < prev    next >
Encoding:
Java Source  |  1999-05-28  |  1.3 KB  |  43 lines  |  [TEXT/CWIE]

  1. /*
  2.  * @(#)PrivateKey.java    1.22 98/06/29
  3.  *
  4.  * Copyright 1996-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  *
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.security;
  16.  
  17. /**
  18.  * <p>A private key. This interface contains no methods or constants.
  19.  * It merely serves to group (and provide type safety for) all private key
  20.  * interfaces.
  21.  *
  22.  * Note: The specialized private key interfaces extend this interface.
  23.  * See, for example, the DSAPrivateKey interface in
  24.  * <code>java.security.interfaces</code>.
  25.  *
  26.  * @see Key
  27.  * @see PublicKey
  28.  * @see Certificate
  29.  * @see Signature#initVerify
  30.  * @see java.security.interfaces.DSAPrivateKey
  31.  * @see java.security.interfaces.RSAPrivateKey
  32.  * @see java.security.interfaces.RSAPrivateCrtKey
  33.  *
  34.  * @version 1.22 99/03/26
  35.  * @author Benjamin Renaud
  36.  * @author Josh Bloch
  37.  */
  38.  
  39. public interface PrivateKey extends Key {
  40.     // Declare serialVersionUID to be compatible with JDK1.1
  41.     static final long serialVersionUID = 6034044314589513430L;
  42. }
  43.